home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-11-27 | 540 b | 26 lines |
- common=../libtxi
- LOCDEFS = -DREMOVE_OUTPUT_EXTENSIONS
- LIBS = -L$(common) -ltxi
- LOADLIBES = $(LIBS)
- LDFLAGS = -s
-
- OBJS = makeinfo.o
-
- CFLAGS = -O2
-
- all: makeinfo.exe makeinfo.info
-
- makeinfo.exe: $(OBJS) $(common)/libtxi.a
- gcc $(LDFLAGS) -o makeinfo $(OBJS) $(LOADLIBES)
- coff2exe makeinfo
-
- makeinfo.o: makeinfo.c $(common)/getopt.h
- gcc -c -I. -I$(common) $(LOCDEFS) $(CFLAGS) $*.c
-
- makeinfo.info: makeinfo.exe makeinfo.texi
- makeinfo --no-split -I. makeinfo.texi -o makeinfo.info
-
- clean :
- -del *.o
- -del makeinfo
-